home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / DragDrop / DragObjects2U.dfm / DragObjects2U.txt
Encoding:
Text File  |  2000-02-11  |  2.1 KB  |  114 lines

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 126
  4.   Width = 282
  5.   Height = 333
  6.   Caption = 'Drag Objects'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object Label1: TLabel
  14.     Left = 144
  15.     Top = 16
  16.     Width = 32
  17.     Height = 13
  18.     Caption = 'Label1'
  19.     DragMode = dmAutomatic
  20.     OnEndDrag = SharedEndDrag
  21.     OnStartDrag = Label1StartDrag
  22.   end
  23.   object Edit1: TEdit
  24.     Left = 144
  25.     Top = 40
  26.     Width = 121
  27.     Height = 21
  28.     DragMode = dmAutomatic
  29.     TabOrder = 0
  30.     Text = 'Edit1'
  31.     OnEndDrag = SharedEndDrag
  32.     OnStartDrag = Edit1StartDrag
  33.   end
  34.   object Panel1: TPanel
  35.     Left = 8
  36.     Top = 184
  37.     Width = 257
  38.     Height = 113
  39.     Caption = 'Panel1'
  40.     TabOrder = 1
  41.     OnDragDrop = Panel1DragDrop
  42.     OnDragOver = Panel1DragOver
  43.   end
  44.   object Button1: TButton
  45.     Left = 8
  46.     Top = 8
  47.     Width = 121
  48.     Height = 25
  49.     Caption = 'Button1'
  50.     DragMode = dmAutomatic
  51.     TabOrder = 2
  52.     OnEndDrag = SharedEndDrag
  53.     OnStartDrag = Button1StartDrag
  54.   end
  55.   object Memo1: TMemo
  56.     Left = 8
  57.     Top = 72
  58.     Width = 121
  59.     Height = 95
  60.     DragMode = dmAutomatic
  61.     Lines.Strings = (
  62.       'Memo1')
  63.     TabOrder = 3
  64.     OnEndDrag = SharedEndDrag
  65.     OnStartDrag = Memo1StartDrag
  66.   end
  67.   object ListBox1: TListBox
  68.     Left = 144
  69.     Top = 72
  70.     Width = 121
  71.     Height = 95
  72.     DragMode = dmAutomatic
  73.     IntegralHeight = True
  74.     ItemHeight = 13
  75.     Items.Strings = (
  76.       'One'
  77.       'Two'
  78.       'Three'
  79.       'Four'
  80.       'Five'
  81.       'Six'
  82.       'Seven'
  83.       'Eight'
  84.       'Nine'
  85.       'Ten')
  86.     TabOrder = 4
  87.     OnEndDrag = SharedEndDrag
  88.     OnStartDrag = ListBox1StartDrag
  89.   end
  90.   object ComboBox1: TComboBox
  91.     Left = 8
  92.     Top = 40
  93.     Width = 121
  94.     Height = 21
  95.     DragMode = dmAutomatic
  96.     ItemHeight = 13
  97.     Items.Strings = (
  98.       'One'
  99.       'Two'
  100.       'Three'
  101.       'Four'
  102.       'Five'
  103.       'Six'
  104.       'Seven'
  105.       'Eight'
  106.       'Nine'
  107.       'Ten')
  108.     TabOrder = 5
  109.     Text = 'One'
  110.     OnEndDrag = SharedEndDrag
  111.     OnStartDrag = ComboBox1StartDrag
  112.   end
  113. end
  114.